This paragraph is so important, is should probably be bolded.
Bold It
SAMPLE CODE <script type="text/javascript" src="../../jQueryFolder/js/jquery-3.1.1.min.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("button#bold_it").on("click", function() { var okToBold = $("p#important"); okToBold.html("<p id='important'><strong>" + okToBold.text() + "</strong></>"); }); }); </script> <p id="important">This paragraph is so important, is should probably be bolded.</p> <br> <button id="bold_it">Bold It</button>